Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

87
Visualizações
Regex for Email ([A-Za-z]{2,4})$/

I was reading this link to understand regex: https://www3.ntu.edu.sg/home/ehchua/programming/howto/Regexe.html

In my code, Here is what I have:

var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;

I was testing this email: "test@tatsu.works", and I got error "Please Enter Valid Email ID"

If I understand correct, it is related to the ending section .([A-Za-z]{2,4})$/

I though the {2,4} means 2 to 4 characters, so I changed to {2,6}, but still getting error. Basically the ".works" can be any number of characters.

Can I know what I do wrong?

Kind Regards

================================================================= EDIT: Apparently, changing to {2,6} or {2,} works, but the reason why it is not working for me is because I am using Chrome and somehow the javascipt is not refreshed (I think related to cookie)

When I switched to Edge, the regex works.

Anyway Thanks to user Wiktor Stribiżew

almost 4 years ago · Santiago Trujillo
2 Respostas
Responde à pergunta

0

Parsing emails for validity using a regex is a non trivial problem.

These are all valid emails that your regex will fail

'Long live the king'@com
This\ is\ my#@email.address
Fred\@barney@bedrock.gov

See https://beesbuzz.biz/code/439-Falsehoods-programmers-believe-about-email and look up the bits about email addresses.

almost 4 years ago · Santiago Trujillo Relatório

0

I'd just use filter_var with the FILTER_VALIDATE_EMAIL flag to check, if an email address is in the correct format.

if (filter_var($email, FILTER_VALIDATE_EMAIL)) {
  // valid email address
}
almost 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda